home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / sys / amiga / misc-part1 / 2511 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  3.1 KB

  1. Path: dialup04.syd1.zeta.org.au!user
  2. From: ivans@zeta.org.au (Ivan Smith)
  3. Newsgroups: aus.computers.amiga,comp.sys.amiga,comp.sys.amiga.misc
  4. Subject: Re: Logging in via PPP
  5. Date: Mon, 22 Jan 1996 15:14:00 +1000
  6. Organization: Go5Media
  7. Message-ID: <ivans-2201961514000001@dialup04.syd1.zeta.org.au>
  8. References: <4dlc9n$ha4@wumpus.cc.uow.edu.au>
  9. NNTP-Posting-Host: dialup04.syd1.zeta.org.au
  10.  
  11. In article <4dlc9n$ha4@wumpus.cc.uow.edu.au>, jc29@wumpus.cc.uow.edu.au
  12. (Fundamental) wrote:
  13.  
  14. >can anyone help me out?
  15. >
  16. >
  17. >im trying to get PPP working on a particualr provider here in OZ
  18. >
  19. >the PPP dial script dials in, establishes a connection (logs in)
  20. >
  21. >but when the provider is ready to connect using PPP, nothing happens on 
  22. >my side .. im using the Vark Internet package??
  23. >
  24. >any help???
  25. >
  26. >
  27. >the last line in the script has WAIT "MTU" .. whats that?
  28. >
  29. >also .. whats CR-LF?
  30.  
  31. I think you can ignore the MTU line and bring your script down to a basic
  32. configuration.
  33.  
  34. The PPP device seems to more intelegent than it's cslip counterpart in
  35. that it can negotiate things like MTU (Maximum Transfer Unit) which is
  36. defaulted to 1500 any way on most systems. The PPP device will negotaite
  37. these things automatically and the unregistered (evaluation version) of
  38. the Amiga ppp.device can't go any higher than this any way.
  39.  
  40. My advice:
  41.  
  42. Par you your script down to do exactly what you would do if your loggining
  43. on manually, indeed it may be a source of information if you log on to
  44. wumpus or whatever server your ppp comes from , manually, with a terminal
  45. program and see what the prompts are and note your responses. Then in the
  46. appropriate places in the script do you SEND and WAITs according to the
  47. manual method.
  48.  
  49. My PPP script is nothing more than:
  50. *************************************
  51. Timeout value.
  52. What to do if busy.(These are at the top of the "demo" script and can be
  53. entered as per that script)
  54.  
  55. SEND <modem init string >
  56. WAIT <OK from the modem>
  57. SEND <ATDTmy service providers number>
  58. WAIT "ogin:"
  59. SEND "MY user name"
  60. WAIT "assword:"
  61. SEND "MY passwaord"
  62. WAIT "ts>" (The terminal server prompt)
  63. SEND "client 1 0" (A Linux script sensing command on my providers machine)
  64. WAIT "ts>"
  65. SEND "ppp"
  66.  
  67.  
  68. NOTE: ALL sends and waits text MUST be enclosed in double quotes "  " thus
  69. or nothing will happen and the script will break at the point where these
  70. quotes aren't.
  71.  
  72. There is an Amiga Guide to connecting via PPP to Zeta Microcomputer (which
  73. I wrote) with the VarkNet disks in mind and it's URL is:
  74. http://www.zeta.org.au/~ivans/ (thats for the page) and the actual LHA
  75. file is about 2/3rds down the page as "An Amiga Guide to PPP/Zeta
  76. Connection".
  77.  
  78. This guide file is mainly for the benefit of Amiga users on Zeta
  79. Microcomputer and contains references to specific Zeta things but you will
  80. find it generic enough to figure you problem out. It also contains some
  81. pitfalls to watch for if configuring AmiTCP and the PPP device for the
  82. first time ;)
  83.  
  84.  
  85. Hope that helps you any way.
  86.  
  87. Regards,
  88.  
  89. Ivan Smith
  90.  
  91. <>>>>>>>>>>IVAN SMITH<<<<<<<<<<<>
  92.       http://www.zeta.org.au/~ivans  
  93.       Email:       ivans@zeta.org.au 
  94. >>>>>>>>>>>>>><<<<<<<<<<<<<<<<<<>
  95.